home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / ZView.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.8 KB  |  63 lines

  1. #if !defined(AFX_ZVIEW_H__5B906AE2_76E3_11D1_8A6E_0000C0B006B6__INCLUDED_)
  2. #define AFX_ZVIEW_H__5B906AE2_76E3_11D1_8A6E_0000C0B006B6__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // ZView.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CZView view
  12.  
  13. class CZView : public CView
  14. {
  15. protected:
  16.     CZView();           // protected constructor used by dynamic creation
  17.     DECLARE_DYNCREATE(CZView)
  18.  
  19. // Attributes
  20. public:
  21.  
  22. // Operations
  23. public:
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CZView)
  28.     protected:
  29.     virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.     virtual ~CZView();
  35. #ifdef _DEBUG
  36.     virtual void AssertValid() const;
  37.     virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39.  
  40.     // Generated message map functions
  41. protected:
  42.     //{{AFX_MSG(CZView)
  43.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  44.     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  45.     afx_msg void OnSize(UINT nType, int cx, int cy);
  46.     afx_msg void OnDestroy();
  47.     afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  48.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  49.     afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
  50.     afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  51.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  52.     afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  53.     //}}AFX_MSG
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58.  
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  61.  
  62. #endif // !defined(AFX_ZVIEW_H__5B906AE2_76E3_11D1_8A6E_0000C0B006B6__INCLUDED_)
  63.